home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / MSDOS / makec7.uti < prev    next >
Text File  |  1979-12-31  |  579b  |  33 lines

  1. # makefile
  2. #
  3. # This is part of the flight simulator 'fly8'.
  4. # Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  5. #
  6.  
  7. #
  8. # make the utilities for msdos, ms c7
  9. #
  10.  
  11. CFLAGS=    -I..\$(SYSTEM) -I.. $(XFLAGS) 
  12. LFLAGS= /ST:4000 /PACKCODE /F
  13.  
  14. HFILES=    ..\keydef.h ..\keymap.h ..\keyname.h
  15.  
  16. all:    mac2max.exe max2mac.exe
  17.  
  18. mac2max.obj max2mac.obj: $(HFILES)
  19.  
  20. mac2max.exe:    mac2max.obj
  21.     $(CC) $(CFLAGS) mac2max.obj -link $(LFLAGS)
  22.     lzexe mac2max
  23.     del mac2max.old
  24.  
  25. max2mac.exe:    max2mac.obj
  26.     $(CC) $(CFLAGS) max2mac.obj -link $(LFLAGS)
  27.     lzexe max2mac
  28.     del max2mac.old
  29.  
  30. clean:
  31.     -del *.obj
  32.     -del *.exe
  33.